INtime SDK Help
byteorder
Swap bytes in integer values.
#include <sys/endian.h>

uint16_t bswap16(uint16_t int16);
uint32_t bswap32(uint32_t int32);
uint64_t bswap64(uint64_t int64);

uint16_t be16toh(uint16_t big16);
uint32_t be32toh(uint32_t big32);
uint64_t be64toh(uint64_t big64);

uint16_t htobe16(uint16_t host16);
uint32_t htobe32(uint32_t host32);
uint64_t htobe64(uint64_t host64);

uint16_t htole16(uint16_t host16);
uint32_t htole32(uint32_t host32);
uint64_t htole64(uint64_t host64);

uint16_t le16toh(uint16_t little16);
uint32_t le32toh(uint32_t little32);
uint64_t le64toh(uint64_t little64);

Remarks

The bswap16(), bswap32(), and bswap64() functions return a byte order swapped integer. On big endian systems, the number is converted to little endian byte order. On little endian systems, the number is converted to big endian byte order.

The be16toh(), be32toh(), and be64toh() functions return a big endian byte ordered integer converted to the system's native byte order. The return value will be the same as the argument on big endian systems.

The le16toh(), le32toh(), and le64toh() functions return a little endian byte ordered integer converted to the system's native byte order. The return value will be the same as the argument on little endian systems.

The htobe16(), htobe32(), and htobe64() functions return an integer in the system's native byte order converted to big endian byte order. The return value will be the same as the argument on big endian systems.

The htole16(), htole32(), and htole64() functions return a integer in the system's native byte order converted to little endian byte order. The return value will be the same as the argument on little endian systems.

Requirements

Versions Defined in Include Link to
INtime 6.1 intime/rt/include/endian.h endian.h clib.lib
See Also

Network 7